home *** CD-ROM | disk | FTP | other *** search
/ Cream of the Crop 20 / Cream of the Crop 20 (Terry Blount) (1996).iso / program / commio0b.zip / DOOR.INI < prev    next >
Text File  |  1996-05-20  |  3KB  |  63 lines

  1. ; Example INI file for the COMMIO door kit.
  2.  
  3. ; Most of the following values MUST be set to the correct values for your
  4. ; BBS, since i have not finished the LoadDropFile() procedures.  And each
  5. ; node of the BBS must have its own INI with the correct values for the
  6. ; comport.
  7. ; NOTE: currently, the door assumes the user has ANSI enabled.  so colors
  8. ;       and animations will always be sent.  This is because i have not
  9. ;       made a DetectAnsi() function yet.
  10.  
  11. Usefossil = no
  12. ; Are you using a Fossil Driver?  NO will use the internal comm routines.
  13. ; values: yes/true/1=yes, no/false/0=no
  14.  
  15. node = 1
  16. ; What node are we on?
  17. ; the door doesn't care what this is set to.
  18.  
  19. ComPort = 1
  20. ; What comport does this node use?
  21. ; 0=local mode
  22.  
  23. Baudrate = 57600
  24. ; What is the baudrate of the comport?
  25. ; baudrate is ignored if comport=0
  26. ; values are: 300,1200,2400,4800,9600,19200,38400 [,57600,115200]
  27. ; NOTE: if using a fossil driver, the highest baudrate allowed is 38400
  28.  
  29. UseFIFOs = yes
  30. ; Unless you have an OLD/CHEAP modem, you probably don't have to worry about
  31. ; this value.  You want it set to YES if possible.  See below...
  32. ; If yes then use FIFO's if found else ... do not use FIFO's, even if found.
  33. ; This is here because i do not have a DetectUart function yet.  And some
  34. ; UARTs either have NO fifos, and some have BUGGY fifos (16550 [no A])  If
  35. ; you know that your comport has a 16550 [no A] UART, set this to NO.  If
  36. ; you have anything higher, or lower it doesn't matter.  The init routines
  37. ; will detect if FIFO's are present or not (they just can't tell if the FIFOs
  38. ; are working or not)
  39.  
  40. ;;IRQ = 4
  41. ; non-standard IRQ for comport.  If the comport is using a non-standard
  42. ; IRQ, then uncomment the IRQ line above, and select the correct IRQ.
  43. ; I'm not sure, but this might only work with the Internal comm routines,
  44. ; I know it works for those, but i don't know if the fossil driver will
  45. ; accept it.
  46.  
  47. WordSize = 8
  48. ; WordSize (Databits).  You probably don't have to mess with this.
  49.  
  50. Parity = "N"
  51. ; Parity.  You probably don't have to mess with this.
  52. ; values are: "N"one,"E"ven,"O"dd (char in quotes only)
  53.  
  54. StopBits = 1
  55. ; StopBits.  You probably don't have to mess with this.
  56.  
  57. InBufSize = 512
  58. OutBufSize = 1024
  59. ; INPUT & OUTPUT buffer sizes.  These values are only used for the Internal
  60. ; COMM routines, it makes no difference if using a Fossil. (because i don't
  61. ; know how to change the buffer sizes for a Fossil driver, but i'm looking)
  62. ; Max values are: 32767 bytes
  63.